const getServerSideProps = async (context) => {
const res = await fetch('http://localhost:3000/api' + context.resolvedUrl);
const data = await res.json();
return { props: { data } };
}
const PageSubstance = (props) => {
const data = props.data
switch (data.resultType) {
case 'treeContents':
return (
<div>
<h1>Items:</h1>
<ul>
{data.resultContent.map((item) => (
<li>{item}</li>
))}
</ul>
</div>
);
break;
case 'textBlob':
return (
<div>
<h1>Text:</h1>
{data.resultContent}
</div>
);
break;
case 'binaryBlob':
return (
<div>
<p>Binary content cannot be displayed.</p>
</div>
);
break;
case 'error':
return (
<div>
<h1>Error:</h1>
{data.resultContent}
</div>
);
break;
}
}
const Main = ({ data }) => {
return (
<div>
<PageSubstance data={data} />
</div>
);
}
export { getServerSideProps };
export default Main;
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64